System.Collections.Generic.IDictionary<TKey,System.Collections.Generic.ICollection<TValue>>.Item Property

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
private ICollection<TValue> IDictionary<TKey, ICollection<TValue>>.Item[
	TKey key
]{ get; set;}
Visual Basic (Declaration)
Private Property System.Collections.Generic.IDictionary<TKey,System.Collections.Generic.ICollection<TValue>>.Item ( _
	key As TKey _
) As ICollection(Of TValue) Implements IDictionary(Of TKey, ICollection(Of TValue)).Item
Visual C++
private:
virtual property ICollection<TValue>^ System.Collections.Generic.IDictionary<TKey,System.Collections.Generic.ICollection<TValue>>.Item[TKey key] {
	ICollection<TValue>^ get (TKey key) sealed = IDictionary<TKey, ICollection<TValue>^>::Item::get;
	void set (TKey key, ICollection<TValue>^ value) sealed = IDictionary<TKey, ICollection<TValue>^>::Item::set;
}

Parameters

key
TKey

See Also